home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 September
/
Chip_2002-09_cd1.bin
/
internet
/
regedit
/
install
/
cedt345.exe
/
template
/
hello world program.java
< prev
next >
Wrap
Text File
|
2001-10-22
|
172b
|
10 lines
// basic template file for java
import java.io.*;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("hello world");
}
}